chore: bump valtio to 1.13.2 and remove vanilla imports#368
Merged
ignaciosantise merged 6 commits intodevelopfrom Jun 26, 2025
Merged
chore: bump valtio to 1.13.2 and remove vanilla imports#368ignaciosantise merged 6 commits intodevelopfrom
ignaciosantise merged 6 commits intodevelopfrom
Conversation
🦋 Changeset detectedLatest commit: c425b73 The changes in this PR will be included in the next version bump. This PR includes changesets to release 14 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
There was a problem hiding this comment.
Pull Request Overview
This PR updates the project’s dependencies and import paths to reflect the latest Valtio release and streamlines package metadata.
- Bump
valtiofrom 1.11.2 to 1.13.2 in core and SIWE packages - Replace all
valtio/vanillaandvaltio/vanilla/utilsimports with the new main orvaltio/utilsentry points - Remove
react-native-modalpeerDependency and update package metadata (names, changesets)
Reviewed Changes
Copilot reviewed 12 out of 13 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| packages/siwe/package.json | Bump valtio to 1.13.2 |
| packages/core/package.json | Bump valtio to 1.13.2 |
| packages/scaffold/package.json | Remove react-native-modal from peerDependencies |
| packages/core/src/controllers/TransactionsController.ts | Import proxy/subscribe from valtio |
| packages/core/src/controllers/SendController.ts | Import subscribeKey from valtio/utils and other APIs from valtio |
| packages/core/src/controllers/EventsController.ts | Import proxy/subscribe from valtio |
| packages/core/src/controllers/EnsController.ts | Import subscribeKey from valtio/utils and other APIs from valtio |
| package.json | Bump @changesets/changelog-github & @changesets/cli |
| apps/native/package.json | Add missing "name" field |
| apps/gallery/package.json | Add missing "name" field |
| .changeset/slow-toes-dream.md | New changeset for Valtio bump |
| .changeset/config.json | Generalize ignore pattern to ["@apps/*"] |
Comments suppressed due to low confidence (3)
packages/scaffold/package.json:47
- Since
react-native-modalwas removed from peerDependencies, update any README or docs to inform users they must now installreact-native-modalthemselves if they rely on it.
"react-native": ">=0.68.5"
.changeset/slow-toes-dream.md:18
- [nitpick] The changeset only mentions the Valtio version bump; consider adding a brief note about replacing
valtio/vanillaimports so consumers see the full scope of internal refactoring.
chore: bump valtio to 1.13.2
.changeset/config.json:8
- The ignore pattern was broadened to
@apps/*; verify that this aligns with your release workflow and that no apps are unintentionally excluded from changeset processing.
"ignore": ["@apps/*"]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Dependency Management Updates:
valtiodependency to version1.13.2inpackages/core/package.jsonandpackages/siwe/package.json. [1] [2]Codebase Consistency:
valtio/vanillaimports withvaltioin multiple files, includingEnsController.ts,EventsController.ts,SendController.ts, andTransactionsController.ts, to simplify import paths. [1] [2] [3] [4]react-native-modalfrompeerDependenciesinpackages/scaffold/package.jsonto streamline dependencies.